home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-05 / pcswnt.zip / MPREPARE.BAT < prev    next >
DOS Batch File  |  1990-11-25  |  574b  |  23 lines

  1. echo off
  2. rem //mawingo// prepare system configuration
  3. rem copies a CONFIG.xxx and an AUTOEXEC.xxx file
  4. rem       to CONFIG.SYS and    AUTOEXEC.SYS, where
  5. rem       xxx comes from parameter.
  6. rem prepares an autoexec/config file
  7. c:
  8. cd \
  9. if not exist autoexec.%1 goto error
  10. copy c:\autoexec.%1 c:\*.bat
  11. copy c:\config.%1   c:\*.sys
  12. echo *** hit a key to perform IPL or Ctrl-Break to avoid IPL ***
  13. pause
  14. ipl
  15. goto end
  16. :error
  17. echo call MPREPARE with an existing AUTOEXEC.eee extension as
  18. echo      a parameter:
  19. dir c:\autoexec.*
  20. dir c:\config.*
  21. :end
  22. echo on
  23.